How to enable horizontal scrolling of content in a webpage

51

.scrolling-wrapper {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  }

  .content {
    flex: 0 0 auto;
  }
.scrolling-wrapper {
  overflow-x: scroll;
  overflow-y: hidden;
  white-space: nowrap;
  }

  .card {
    display: inline-block;
  }
.scrolling-wrapper {
  overflow-x: scroll;
  overflow-y: hidden;
  white-space: nowrap;

  .card {
    display: inline-block;
  }
}

Comments

Submit
0 Comments